home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / World_Atlas_1.adf / REXX / Checktype.wa next >
Text File  |  1991-09-25  |  395b  |  25 lines

  1. /*
  2.     World Atlas V2.50b - AREXX Script (checktype example)
  3.     Written By Henrik Brinch
  4. */
  5.  
  6. address 'atlas'
  7. options results
  8.  
  9. wb2front
  10. say "Please enter a name";
  11. pull name
  12.  
  13. checktype name
  14.  
  15. if result = 255 then do
  16.     say "I really don't know what that is?  Do you?"
  17.     exit
  18. end
  19.  
  20. if result = 0 then say "Yeah that's a country"
  21. if result = 1 then say "I bet that is an american state!"
  22.  
  23. delay 5*50
  24. wa2front
  25.